home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_bas / pbc32.zip / MAKEDEMO.BAT < prev    next >
DOS Batch File  |  1996-04-10  |  990b  |  31 lines

  1. @echo off
  2. echo off
  3. echo MakeDemo compiles and links the various PBClone demos for you.
  4. echo For this to work:
  5. echo   1) BC.EXE and LINK.EXE must be somewhere along your PATH
  6. echo   2) The BC support libraries must be somewhere along your LIB
  7. echo   3) The demo .BAS files must be in the current directory
  8. echo   4) You must have created a complete PBCLONE.LIB library.
  9. echo ...otherwise, press Ctrl-C to quit. You can use BLDLIB.BAT to
  10. echo create PBCLONE.LIB for you, or follow the instructions in the
  11. echo manual (PBCLONE.DOC or the printed manual if you've registered).
  12. pause
  13. bc demo/o;
  14. link demo/ex,,nul,pbclone;
  15. del demo.obj >nul
  16. bc menudemo/o;
  17. link menudemo/ex,,nul,pbclone;
  18. del menudemo.obj >nul
  19. bc patcher/o;
  20. link patcher,,nul,pbclone;
  21. del patcher.obj >nul
  22. bc arcview/o;
  23. link arcview/ex,,nul,pbclone;
  24. del arcview.obj >nul
  25. bc dirview/o;
  26. link dirview/ex,,nul,pbclone;
  27. del dirview.obj >nul
  28. bc playvoc/o;
  29. link playvoc/ex,,nul,pbclone;
  30. del playvoc.obj >nul
  31.